dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / MySqlHelper Class / ExecuteNonQuery Method / ExecuteNonQuery(String,String,MySqlParameter[]) Method
ConnectionString to use.
The SQL command to execute.
The array of MySqlParameter objects to use with the command.

ExecuteNonQuery(String,String,MySqlParameter[]) Method
Executes a single command against a MySQL database. A new MySqlConnection is created using the ConnectionString given.
Syntax
'Declaration
 
Public Overloads Shared Function ExecuteNonQuery( _
   ByVal connectionString As String, _
   ByVal commandText As String, _
   ByVal ParamArray parms() As MySqlParameter _
) As Integer
 

Parameters

connectionString
ConnectionString to use.
commandText
The SQL command to execute.
parms
The array of MySqlParameter objects to use with the command.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also